home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TTools / TToolsPalette / TBinderList.subproj / TDataSourceConnector.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  621 b   |  30 lines

  1. /* TDataSourceConnector.h
  2.  * Written By:  Thomas Burkholder
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  */
  8.  
  9. #import <appkit/appkit.h>
  10. #import <apps/InterfaceBuilder.h>
  11.  
  12. @interface TDataSourceConnector:Object <IBConnectors>
  13. {
  14.     id    source;
  15.     id    destination;
  16. }
  17.  
  18. - setSource:anObject;
  19. - source;
  20. - setDestination:anObject;
  21. - destination;
  22. - establishConnection;
  23. - free;
  24. - nibInstantiate;
  25. - renewObject:old to:new;
  26. - read:(NXTypedStream *)stream;
  27. - write:(NXTypedStream *)stream;
  28.  
  29. @end
  30.